home *** CD-ROM | disk | FTP | other *** search
- Path: tank.news.pipex.net!pipex!iol!usenet
- From: David Byrden <Goyra@iol.ie>
- Newsgroups: comp.lang.c++
- Subject: Re: STL vector and compiler warnings
- Date: 27 Mar 1996 20:54:24 GMT
- Organization: Ireland On-Line
- Message-ID: <4jc9u0$hnf@nuacht.iol.ie>
- References: <4jc0f5$b43@news.tiac.net>
- NNTP-Posting-Host: dialup-079.dublin.iol.ie
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.22KIT (Windows; I; 16bit)
-
-
- lindak@pumpkin.iii.net (Linda Kasparek) wrote:
-
- >Does anyone know what causes the following compiler warnings (MS VC++ 4.0):
- >
- >Compiling...
- >Vec1.cpp
- >\tctools\stl\iterator.h(64) : warning C4114: same type qualifier used more than once
- >\tctools\stl\iterator.h(64) : warning C4114: same type qualifier used more than once
-
-
- You can safely ignore these warnings, in fact, you should use the
- appropriate pragma to make them go away. They are caused by expansion of a
- template causing a generated type to have the same modifer (e.g. const)
- more than once.
-
- David
-
-
-